home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_shs_dlog_faith.cog < prev    next >
Text File  |  1999-11-15  |  1KB  |  77 lines

  1. # Jones 3D Cog Script
  2. #
  3. # shs_Dlog_faith.cog   Say the line, Indy.  
  4. #
  5. # [JWC]
  6. #
  7. # (C) 1999 LucasArts Entertainment Company LLC. All Rights Reserved
  8. #
  9. # ========================================================================================
  10.  
  11. symbols
  12.  
  13. message     startup
  14. message     entered
  15.  
  16. sound        in_faith=Ss06j01.wav   local
  17.  
  18. surface     trigger
  19.  
  20. thing        player            local
  21. #thing        target
  22. #thing         interpcam
  23.  
  24. thing        body0
  25. thing        body1
  26. thing        body2
  27. thing        body3
  28. thing        body4
  29.  
  30.  
  31. int            spoken=0        local
  32. int            x                local
  33.  
  34. end
  35.  
  36. # ========================================================================================
  37.  
  38. code
  39.  
  40. startup:
  41.     
  42.           
  43.     player = GetLocalPlayerThing();
  44.     for (x=0; x<=5; x=x+1)
  45.     {
  46.         SetThingLight(body0[x], '0.2 0.2 0.2', 0.01, 0.01);
  47.     }
  48.     return;
  49.     
  50.     
  51. entered:
  52.     
  53.     if ((GetSenderRef() == trigger) && (spoken == 0)) 
  54.     {
  55.         MakeMeStop();
  56.         StartCutscene(1);
  57.         spoken=1;
  58.         
  59.         # Camera stuff
  60.         #sleep(.5);
  61.  
  62.         # "What happened here? Did the monks lose..."
  63.         PlayVoice(player, in_faith, 1.0, 0);
  64.         
  65.         #RestoreExtCam();
  66.         ClearActorFlags(player, 0x200000); # player in control
  67.         EndCutscene();
  68.     }
  69.     
  70. return;
  71.      
  72.   
  73.  
  74. end
  75.  
  76.  
  77.